home *** CD-ROM | disk | FTP | other *** search
- // Copyright (C) 1997-2002 Alias|Wavefront,
- // a division of Silicon Graphics Limited.
- //
- // The information in this file is provided for the exclusive use of the
- // licensees of Alias|Wavefront. Such users have the right to use, modify,
- // and incorporate this code into other products for purposes authorized
- // by the Alias|Wavefront license agreement, without fee.
- //
- // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- //
- // Copyright (C) 1997-1998 Alias|Wavefront,
- // a division of Silicon Graphics Limited.
- //
- // The information in this file is provided for the exclusive use of the
- // licensees of Alias|Wavefront. Such users have the right to use, modify,
- // and incorporate this code into other products for purposes authorized
- // by the Alias|Wavefront license agreement, without fee.
- //
- // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- //
- // $Source: /vobs/aw/Maya/src/ExplorerSlice/UI/hypergraphMelFolderMenu.mel $
- //
- // $Author: jcameron $
- // $Revision: /main/3 $
- // $Date: 2000/01/04 13:00:44 $
- //
-
- global proc hypergraphMelFolderMenu(string $editor, string $menu, string $node)
- {
- setParent -m $menu;
-
- menuItem
- -l "Add new disk folder"
- MelAddNewDiskFolderItem;;
-
- menuItem
- -edit
- -command ("visorAddNewDiskFolder " + $editor)
- MelAddNewDiskFolderItem;;
-
- // menuItem -l "Visor Menu:" MelFolderMenuTitleItem;
- // menuItem -divider true;
- // menuItem -divider true;
- // menuItem -l "New..." -subMenu true;
- // menuItem -l "Custom Folder" MelCustomFolderItem;
- // menuItem -l "Directory Folder" MelDirectoryFolderItem;
- // menuItem -divider true;
- // menuItem -l "Mel Command Folder" MelMelFolderItem;
- // setParent -menu ..;
- // menuItem -divider true;
- // menuItem -l "Mel Folder Properties" MelFolderEditItem;
- // menuItem -l "Rename" MelFolderRenameItem;
- // menuItem -edit -c ("newMelFolderDialog " + $editor)
- // MelMelFolderItem;
- // menuItem -edit -c ("newDirectoryFolderDialog " + $editor)
- // MelDirectoryFolderItem;
- // menuItem -edit -c ("newUserFolderDialog " + $editor)
- // MelCustomFolderItem ;
- // menuItem -edit -c
- // ("visor -editCommand \""+$node+"\" " + $editor)
- // MelFolderEditItem;
- // menuItem -edit -c
- // ("hyperGraph -e -rename -useFeedbackList " + $editor)
- // MelFolderRenameItem;
- }
-